{% extends 'base_dashboard.html' %} {% block title %}{{ inquiry.reference }} — {{ site_settings.institute_name }}{% endblock %} {% block content %}

{{ inquiry.subject }}

{{ inquiry.reference }} · {{ inquiry.created_at|date:"d M Y H:i" }}

Back
{{ inquiry.get_topic_display }} {% if inquiry.is_resolved %} Resolved {% else %} Open {% endif %}

{{ inquiry.message }}

Staff notes
{% csrf_token %}
Contact
Name: {{ inquiry.name }}
{% if inquiry.phone %}
Phone: {{ inquiry.phone }}
{% endif %} {% if inquiry.user %}
Linked account: {{ inquiry.user.username }}
{% endif %}
{% if not inquiry.is_resolved %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% if user.role == 'admin' %}
{% csrf_token %}
{% endif %}
{% endblock %}